home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / SCLIB.ARJ / SCL1SAMP.EXE / TAG.C < prev    next >
Text File  |  1992-01-01  |  642b  |  36 lines

  1. #include <scl1.h>
  2. #include <scl1clor.h>
  3.  
  4.     /*******************
  5.        TagList example */
  6.  
  7. struct TagList tl[]={
  8.      0,"Option 1",
  9.      0,"Option 2",
  10.      0,"Option 3",
  11.      0,"Option 4",
  12.      0,"Option 5",
  13.      0,"Option 6",
  14.      0,"Option 7",
  15.      0,"Option 8",
  16.      0,"Option 9",
  17.      0};
  18.  
  19. main()
  20. {
  21. int i;
  22.  
  23. InitMouse(IM_SHOW);
  24. if(TagList(WHITE_BLACK,BLACK_WHITE,tl) != -1)
  25.     {
  26.     printf("\nThe following options were tagged:\n");
  27.     for(i=0;i < 9;++i)
  28.         {
  29.         if(tl[i].TagFl)
  30.             printf("%s\n",tl[i].String);
  31.         }
  32.     }
  33. else
  34.     printf("\nOperation canceled by user\n");
  35. }
  36.